This function creates a new file or opens an existing file.
Result = EOS_SW_OPEN( filename [, /CREATE] [, /RDWR | , /READ] )
Returns the swath file id handle (fid) if successful and FAIL (–1) otherwise.
Complete path and filename for the file to be opened (string).
If file exists, delete it, then open a new file for read/write.
Open for read/write, If file does not exist, create it.
Open for read only. If file does not exist, error. This is the default.
In this example, we create a new swath file named, SwathFile.hdf. It returns the file handle, fid:
fid = EOS_SW_OPEN("SwathFile.hdf", /CREATE)
5.2 |
Introduced |